$exec = 'ipconfig | findstr /R /C:"IPv4.*"'; exec($exec, $output); preg_match('/\d+\.\d+\.\d+\.\d+/', $output[0], $matches); print_r($matches[0]);